-
Notifications
You must be signed in to change notification settings - Fork 7
fix: documentation OpenAI #126
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
b7acbd1 to
7d25020
Compare
7d25020 to
8ae4cdf
Compare
| ``` | ||
|
|
||
| ## Quick Start | ||
| using `uv`: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should make clear these are alternatives to the same thing (see LangChain/LLamaindex getting started examples)
| using `uv`: | ||
|
|
||
| ```bash | ||
| uv add uipath-openai-agents |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
missing: uv init . --python 3.11 before uv add uipath-openai-agents
I get this error for the uv command:error: Nopyproject.toml found in current directory or any parent directory
| ```bash | ||
| uv add uipath-openai-agents | ||
| ``` | ||
|
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
even after using uv init . --python 3.11 and then uv add uipath-openai-agents I got this error message:
`Because only uipath-openai-agents==0.0.1 is available and uipath-openai-agents==0.0.1 depends on your project, we can conclude that
all versions of uipath-openai-agents depend on your project.
And because your project depends on uipath-openai-agents, we can conclude that your project's requirements are unsatisfiable.
hint: The package `uipath-openai-agents` depends on the package `openai` but the name is shadowed by your project. Consider changing
the name of the project.`
This is a limitation if the pyproject.toml name is openai
| ### Authentication | ||
|
|
||
| ```bash | ||
| uipath auth |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
no uipath command will work without venv activation
No description provided.